home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 4: GNU Archives / Linux Cubed Series 4 - GNU Archives.iso / gnu / git-4.3 / git-4 / git-4.3.11 / man / Makefile.in < prev   
Encoding:
Makefile  |  1996-06-06  |  1.9 KB  |  82 lines

  1. ###
  2. ### Makefile for GNU Interactive Tools
  3. ###
  4.  
  5. ###
  6. ### Copyright (C) 1993, 1994, 1995, 1996 Free Software Foundation, Inc.
  7. ###
  8. ### This program is  free software; you can  redistribute it and/or modify
  9. ### it under the terms  of the GNU General Public  License as published by
  10. ### the  Free Software Foundation; either version  2,  or (at your option)
  11. ### any later version.
  12. ### 
  13. ### This program is distributed  in the hope that  it will be  useful, but
  14. ### WITHOUT    ANY  WARRANTY;  without   even   the  implied  warranty  of
  15. ### MERCHANTABILITY  or  FITNESS FOR  A PARTICULAR   PURPOSE.  See the GNU
  16. ### General Public License for more details.
  17. ### 
  18. ### You should  have received a  copy of  the GNU  General Public  License
  19. ### along with   this  program; if   not,  write  to   the Free   Software
  20. ### Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  21. ###
  22.  
  23.  
  24. PRODUCT        = "@PRODUCT@"
  25. VERSION        = "@VERSION@"
  26.  
  27.  
  28. srcdir        = @srcdir@
  29. VPATH        = @srcdir@
  30.  
  31. prefix        = @prefix@
  32. mandir        = $(prefix)/man/man1
  33.  
  34. SHELL        = /bin/sh
  35. INSTALL        = @INSTALL@
  36. INSTALL_PROGRAM    = @INSTALL_PROGRAM@
  37. INSTALL_DATA    = @INSTALL_DATA@
  38. HOST        = @HOST@
  39.  
  40.  
  41. GIT_MANUALS    = git.1 gitaction.1 gitmount.1\
  42.           gitcmp.1 gitkeys.1 gitredir.1 gitrgrep.1
  43.  
  44.  
  45. man:
  46.  
  47. installdirs:
  48.     @$(srcdir)/../mkinstalldirs $(mandir)
  49.  
  50. install-strip: install
  51.  
  52. install: all install-only
  53.  
  54. install-only:
  55.     for i in $(GIT_MANUALS);\
  56.     do\
  57.         $(INSTALL_DATA) $(srcdir)/$$i $(mandir)/$$i;\
  58.     done
  59.     \
  60.     for i in gitps.1 gitview.1;\
  61.     do\
  62.         rm -f $(mandir)/$$i;\
  63.         ln $(mandir)/git.1 $(mandir)/$$i;\
  64.     done
  65.  
  66. uninstall:
  67.     -cd $(mandir) && rm -f $(GIT_MANUALS) gitps.1 gitview.1
  68.  
  69. clean:
  70.     -rm -f *~ core* tutu* gogu*
  71.  
  72. mostlyclean: clean
  73.  
  74. distclean: clean
  75.     -rm -f Makefile config.status config.log config.cache
  76.  
  77. realclean: distclean
  78.  
  79. # Tell version [3.59,3.63) of GNU make not to export all variables.
  80. # Otherwise a system limit (for SysV at least) may be exceeded.
  81. .NOEXPORT:
  82.